home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / BoxPaint+ - non stereo / headers / BoxPaint_utility.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  710 b   |  32 lines  |  [TEXT/CWIE]

  1. /*  BoxPaint_utility.h                                                                            
  2.  
  3.     Nick Thompson
  4.     Michael Bishop - August 21 1996                                                    
  5.     (c)1994-96 Apple Computer Inc., All Rights Reserved                                
  6.  
  7. */
  8.  
  9. #ifndef _UTILITY_H_
  10. #define _UTILITY_H_
  11.  
  12. #include    "QD3D.h"
  13. #include    "QD3DPick.h"
  14.  
  15. short         Utility_HiWrd(long aLong) ;
  16. short         Utility_LoWrd(long aLong) ;
  17.  
  18. void        Utility_DebugString(char    *theMessage);
  19.  
  20. void        *Utility_MemoryNew(long    size);
  21. void        Utility_MemoryDispose(Handle    theHandle);
  22.  
  23. void        Utility_MyGetMouse(TQ3Point2D *thePoint);
  24. TQ3Boolean    Utility_MyStillDown(void);
  25.  
  26. void        Utility_GetUpVector(const TQ3Vector3D *theForwardVector, TQ3Vector3D *theUpVector);
  27.  
  28. TQ3Object    Utility_GetEnclosingGroup(const TQ3HitPath    *theHitPath);
  29.  
  30.  
  31. #endif
  32.